-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: add organization_id condition for list api key #1373
Conversation
25e31fd
to
8ad877d
Compare
@@ -256,6 +259,7 @@ message ListAPIKeysRequest { | |||
google.protobuf.BoolValue disabled = 7; | |||
string environment_id = 8 [deprecated = true]; | |||
repeated string environment_ids = 9; | |||
string organization_id = 10 [(google.api.field_behavior) = REQUIRED]; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We must support both consoles.
While making the organization_id required, the current console won't work because it sends the environment_id.
So, we would need to add the organization_id when making requests from the current console with the environment_id.
3b93269
to
0a213c9
Compare
Signed-off-by: Alessandro Yuichi Okimoto <[email protected]>
bf57f7f
to
1485a16
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you 🎉
No description provided.